tera

A high-throughput plasmonic tongue using an aggregation assay and nonspecific interactions: classification of taste profiles in maple syrup

Anal. Methods, 2020, Advance Article
DOI: 10.1039/C9AY01942A, Paper
Simon Forest, Trevor Théorêt, Julien Coutu, Jean-Francois Masson
A simple colorimetric test detects off-flavour profiles of maple syrups in minutes, which are detectable by the naked eye.
To cite this article before page numbers are assigned, use the DOI form of citation above.
The content of this RSS Feed (c) The Royal Society of Chemistry




tera

Foundations in sound design for interactive media : a multidisciplinary approach / edited by Michael Filimowicz




tera

Knowledge, power, and women's reproductive health in Japan, 1690-1945 / Yuki Terazawa

Hayden Library - RG67.J3 T44 2018




tera

Iterative learning control for flexible structures Tingting Meng, Wei He

Online Resource




tera

[ASAP] Rapid and Sensitive Detection of anti-SARS-CoV-2 IgG, Using Lanthanide-Doped Nanoparticles-Based Lateral Flow Immunoassay

Analytical Chemistry
DOI: 10.1021/acs.analchem.0c00784




tera

[ASAP] In Situ Study of the Drug–Target Protein Interaction in Single Living Cells by Combining Fluorescence Correlation Spectroscopy with Affinity Probes

Analytical Chemistry
DOI: 10.1021/acs.analchem.0c00263




tera

He’s very down to earth: Chennaiyin FC midfielder Thapa recalls interaction with MS Dhoni

Mahendra Singh Dhoni is one of the co-owners of Chennaiyin FC, two-time winners of Indian Super League in 2015 and 2017-’18 season.




tera

The Role of the Workforce System in Addressing the Opioid Crisis: A Review of the Literature

This literature review was conducted as part of an evaluation of the National Health Emergency demonstration grants awarded by the U.S. Department of Labor to states that using their workforce systems to address problems presented by the opioid crisis.




tera

Plant-Fire Interactions: Applying Ecophysiology to Wildfire Management / Victor Resco de Dios

Online Resource




tera

Liposomal adhesion via electrostatic interactions and osmotic deflation increase membrane tension and lipid diffusion coefficient

Soft Matter, 2020, Advance Article
DOI: 10.1039/D0SM00416B, Paper
Atsushi Oda, Chiho Watanabe, Natsumi Aoki, Miho Yanagisawa
Liposome–liposome adhesion by electrostatic interactions and osmotic contraction increase membrane tension and the lipid diffusion coefficient compared to isolated liposomes.
To cite this article before page numbers are assigned, use the DOI form of citation above.
The content of this RSS Feed (c) The Royal Society of Chemistry




tera

[ASAP] Terahertz Spectroscopy of Gas Mixtures with Dual Quantum Cascade Laser Frequency Combs

ACS Photonics
DOI: 10.1021/acsphotonics.9b01758




tera

Interactivity and Animation with Variable Fonts

Mandy Michael turns the corner on our variable font adventure and stumbles into a grotto of wonder and amazement. Not forgetting the need for a proper performance budget, Mandy shows how variable fonts can free your creativity from bygone technical constraints.


If you read Jason’s introductory article about variable fonts, you’ll understand the many benefits and opportunities that they offer in modern web development. From this point on we’ll assume that you have either read Jason’s introduction or have some prior knowledge of variable fonts so we can skip over the getting started information. If you haven’t read up on variable fonts before jump over to “Introduction to Variable Fonts: Everything you thought you knew about fonts just changed” first and then come join me back here so we can dive into using variable fonts for interactivity and animations!

Creative Opportunities

If we can use variable fonts to improve the performance of our websites while increasing the amount of style variations available to us, it means that we no longer need to trade off design for performance. Creativity can be the driving force behind our decisions, rather than performance and technical limitations.

Cookie text effect font: This Man is a Monster, by Comic Book Fonts.

My goal is to demonstrate how to create interactive, creative text on the web by combining variable fonts with CSS and JavaScript techniques that you may already be familiar with. With the introduction of variable fonts, designs which would have previously been a heavy burden on performance, or simply impossible due to technical limitations, are now completely possible.

Still I Rise Poem by Maya Angelou, Demo emphasising different words with variable fonts. View on Codepen.
Variable fonts demo with CSS Grid using multiple weights and font sizes to emphasise different parts of the message. View on Codepen.

The tone and intent of our words can be more effectively represented with less worry over the impacts of loading in “too many font weights” (or other styles). This means that we can start a new path and focus on representing the content in more meaningful ways. For example, emphasising different words, or phrases depending on their importance in the story or content.

Candy Cane Christmas Themed Text Effect with FS Pimlico Glow by Font Smith. View on Codepen.

Note: using variable fonts does not negate the need for a good web font performance strategy! This is still important, because after all, they are still fonts. Keep that in mind and check out some of the great work done by Monica Dinculescu, Zach Leatherman or this incredible article by Helen Homes.

Variable Fonts & Animations

Because variable fonts can have an interpolated range of values we can leverage the flexibility and interactive nature of the web. Rather than using SVG, videos or JavaScript to accomplish these effects, we can create animations or transitions using real text, and we can do this using techniques we may already be familiar with. This means we can have editable, selectable, searchable, copy-pastable text, which is accessible via a screenreader.

Grass Variable Font Demo

Growing Grass Variable Font Text. Demo on Codepen.

This effect is achieved using a font called Decovar, by David Berlow. To achieve the animation effect we only need a couple of things to get started.

First, we set up the font-family and make use of the new property font-variation-settings to access the different axes available in Decovar.

h1 {
  font-family: "Decovar";
  font-variation-settings: 'INLN' 1000, 'SWRM' 1000;
}

For this effect, we use two custom axis – the first is called “inline” and is represented by the code INLI and the second is “skeleton worm” represented by the code SWRM. For both axes, the maximum value is 1000 and the minimum value is 0. For this effect, we’ll make the most of the full axis range.

Once we have the base set up, we can create the animation. There are a number of ways to animate variable fonts. In this demo, we’ll use CSS keyframe animations and the font-variation-settings property, but you can also use CSS transitions and JavaScript as well.

The code below will start with the “leaves” expanded and then shrink back until it disappears.

@keyframes grow {
  0% {
    font-variation-settings: 'INLN' 1000, 'SWRM' 1000;
  }
  100% {
    font-variation-settings: 'INLN' 1000, 'SWRM' 0;
  }
}

Once we have created the keyframes we can add the animation to the h1 element, and that is the last piece needed in order to create the animation.

h1 {
  font-family: "Decovar";
  font-variation-settings: 'INLN' 1000, 'SWRM' 1000;
  animation: grow 4s linear alternate infinite;
}

What this demonstrates is that typically, to accomplish effects like this, the heavy lifting is done by the font. We really only need a few lines of CSS for the animation, which if you think about it, is pretty incredible.

There are all sorts of interesting, creative applications of variable fonts, and a lot of incredible fonts you can make the most of. Whether you want to create that “hand-writing” effect that we often see represented with SVG, or something a little different, there are a lot of different options.

Duos Writer: Hand Writing

Demo of hand writing variable font, Duos Writer by Underware.

Decovar: Disappearing Text

See the Pen CSS-only variable font demo using Decovar Regular by Mandy Michael (@mandymichael) on CodePen.

Cheee: Snow Text

Snow Text Effect - Text fills up with snow and gets “heavier” at the bottom as more snow gathers. Featuring “Cheee” by OhNoTypeCo. View on Codepen.

Variable Fonts, Media Queries and Customisation

It’s not that these are just beautiful or cool effects, what they demonstrate is that as developers and designers we can now control the font itself and that that means is that variable fonts allow typography on the web to adapt to the flexible nature of our screens, environments and devices.

We can even make use of different CSS media queries to provide more control over our designs based on environments, light contrast and colour schemes.

Though the CSS Media Queries Level 5 Spec is still in draft stages, we can experiment with the prefers-color-scheme (also known as dark mode) media query right now!

Dark Mode featuring Oozing Cheee by OhNoTypeCo

Oozing Dark Mode Text featuring “Cheee” by OhNoTypeCo. View Demo on Codepen.

The above example uses a font called “Cheee” by OhNoTypeCo and demonstrates how to make use of a CSS Transition and the prefers-color-scheme media query to transition the axis of a variable font.

h1 {
  font-family: “Cheee"
  font-variation-settings: "TEMP" 0;
  transition: all 4s linear;
}

@media (prefers-color-scheme: dark) {
  h1 {
    font-variation-settings: "TEMP" 1000;
  }
}

Dark mode isn’t just about changing the colours, it’s important to consider things like weight as well. It’s the combination of the weight, colour and size of a font that determines how legible and accessible it is for the user. In the example above, I’m creating a fun effect – but more practically, dark mode allows us to modify the contrast and styles to ensure better legibility and usability in different environments.

What is even more exciting about variable fonts in this context is that if developers and designers can have this finer control over our fonts to create more legible, accessible text, it also means the user has access to this as well. As a result, users that create their own stylesheets to customise the experience to their specific requirements, can now adjust the pages font weight, width or other available axis to what best suits them. Providing users with this kind of flexibility is such an incredible opportunity that we have never had before!

As CSS develops, we’ll have access to different environmental and system features that allow us to take advantage of our users unique circumstances. We can start to design our typography to adjust to things like screen width - which might allow us to tweak the font weight, width, optical size or other axes to be more readable on smaller or larger screens. Where the viewport is wide we can have more detail, when its smaller in a more confined space we might look at reducing the width of the font—this helps to maintain the integrity of the design as the viewport gets smaller or, to fit text into a particular space.

See the Pen CSS is Awesome - Variable fonts Edition. by Mandy Michael (@mandymichael) on CodePen.

We have all been in the situation where we just need the text to be slightly narrower to fit within the available space. If you use a variable font with a width axis you can slightly modify the width to adjust to the space available, and do so in a way that the font was designed to do, rather than using things like letter spacing which doesn’t consider the kerning of the characters.

Variable Fonts, JavaScript and Interactive Effects

We can take these concepts even further and mix in a little JavaScript to make use of a whole suite of different interactions, events, sensors and apis. The best part about this is whether you are using device orientation, light sensors, viewport resizes, scroll events or mouse movement, the base JavaScript doesn’t really change.

To demonstrate this, we’ll use a straightforward example – we’ll match our font weight to the size of our viewport – as the viewport gets smaller, the font weight gets heavier.

Demo: As the viewport width changes, the weight of the text “Jello” becomes heavier.

We’ll start off by setting our base values. We need to define the minimum and maximum axis values for the font weight, and the minimum and maximum event range, in this case the viewport size. Basically we’re defining the start and end points for both the font and the event.

// Font weight axis range
const minAxisValue = 200
const maxAxisValue = 900

// Viewport range
const minEventValue = 320px
const maxEventValue = 1440px

Next we determine the current viewport width, which we can access with something like window.innerWidth.

// Current viewport width
const windowWidth = window.innerWidth

Using the current viewport width value, we create the new scale for the viewport, so rather than the pixels values we convert it to a range of 0 - 0.99.

const windowSize = (windowWidth - minEventValue) / (maxEventValue - minEventValue)
// Outputs a value from 0 - 0.99

We then take that new viewport decimal value and use it to determine the font weight based on viewport scale.

const fontWeight = windowSize * (minAxisValue - maxAxisValue) + maxAxisValue;
// Outputs a value from 200 - 900 including decimal places

This final value is what we use to update our CSS. You can do this however you want – lately I like to use CSS Custom Properties. This will pass the newly calculated font weight value into our CSS and update the weight as needed.

// JavaScript
p.style.setProperty("--weight", fontWeight);

Finally, we can put all this inside a function and inside an event listener for window resize. You can modify this however you need to in order to improve performance, but in essence, this is all you need to achieve the desired outcome.

function fluidAxisVariation() {
  // Current viewport width
  const windowWidth = window.innerWidth

  // Get new scales for viewport and font weight
  const viewportScale = (windowWidth - 320) / (1440 - 320);
  const fontWeightScale = viewportScale * (200 - 900) + 900;

  // Set in CSS using CSS Custom Property
  p.style.setProperty("--weight", fontWeightScale);
}

window.addEventListener("resize", fluidAxisVariation);

You can apply this to single elements, or multiple. In this case, I’m changing the paragraph font weights and different rates, but also reducing the width axis of the headline so it doesn’t wrap onto multiple lines.

As previously mentioned, this code can be used to create all sorts of really amazing, interesting effects. All that’s required is passing in different event and axis values.

In the following example, I’m using mouse position events to change the direction and rotation of the stretchy slinky effect provided by the font “Whoa” by Scribble Tone.

See the Pen Slinky Text - WHOA Variable font demo by Mandy Michael (@mandymichael) on CodePen.

We can also take the dark mode/colour schemes idea further by making use of the Ambient Light Sensor to modify the font to be more legible and readable in low light environments.

This effect uses Tiny by Jack Halten Fahnestock from Velvetyne Type Foundry and demonstrates how we modify our text based by query the characteristics of the user’s display or light-level, sound or other sensors.

It’s only because Variable fonts give us more control over each of these elements that we can fine-tune the font characteristics to maximise the legibility, readability and overall accessibility of our website text. And while these examples might seem trivial, they are great demonstrations of the possibilities. This is a level of control over our fonts and text that is unprecedented.

Using device orientation to change the scale and weight of individual characters. View on Codepen.

Variable Fonts offer a new world of interactivity, usability and accessibility, but they are still a new technology. This means we have the opportunity to figure out how and what we can achieve with them. From where I stand, the possibilities are endless, so don’t be limited by what we can already do – the web is still young and there is so much for us to create. Variable fonts open up doors that never existed before and they give us an opportunity to think more creatively about how we can create better experiences for our users.

At the very least, we can improve the performance of our websites, but at best, we can make more usable, more accessible, and more meaningful content - and that, is what gets me really excited about the future of web typography with variable fonts.


About the author

Mandy is a community organiser, speaker, and developer working as the Front End Development Manager at Seven West Media in Western Australia. She is a co-organiser and Director of Mixin Conf, and the founder and co-organiser of Fenders, a local meetup for front-end developers providing events, mentoring and support to the Perth web community.

Mandy’s passion is CSS, HTML and JS and hopes to inspire that passion in others. She loves the supportive and collaborative nature of the web and strives to encourage this environment through the community groups she is a part of. Her aim is to create a community of web developers who can share, mentor, learn and grow together.

More articles by Mandy




tera

The politics of war powers: the theory and history of Presidential unilateralism / Sarah Burns

Dewey Library - JK560.B87 2019




tera

Why veterans run: military service in American presidential elections, 1789-2016 / Jeremy M. Teigen

Dewey Library - JK524.T36 2018




tera

Human-wildlife interactions (Cambridge University Press)





tera

Eminent litterateur Sunil Gangopadhyay passes away




tera

Proceedings of the 32nd annual Hydrometallurgical Meeting and International Conference on the Practice and Theory of Chloride/Metal Interaction: October 19-23, 2002 / edited by E. Peek and G. Van Weert

Hydrometallurgical Meeting (32nd : 2002 : Montreal, Quebec)




tera

114 JSJ Asynchronous UI and Non-Blocking Interactions with Elliott Kember

The panelists talk to Elliot Kember about asynchronous UI and non-blocking interactions.




tera

JSJ 410: Iterating on Open Source

Today the panel is discussing iterating on open source projects. Aimee and AJ recall a conversation they had in the past on this subject and AJ talks about some of his experience iterating with open source. AJ believes that we have an obligation to capture the value of what you create so that we can reinvest and create more value, though he admits that making money in open source is a unique challenge because donations only really work if you have a project that gets billions of downloads a month. As your project grows, it has to change in order to survive, and eventually you will need to get financial support from your project. The panel agrees that some of the main issues with iterating in open source are maintaining the code and getting feedback from users, financial backing, and roadmapping and integrations.

The panel discusses their methods for getting feedback from their users. This feedback is valuable because it can show you things that you missed. They acknowledge that there can be conflicts of interest between those who only use the project and those who financially support it, and you have to make a choice. Unfortunately, someone is probably going to be inconvenienced no matter what choice you make. When making these decisions, you have to consider who it helps, who it frustrates, and who it may cause problems for. The panelists talk about different ways they’ve handled making these decisions in the past. The JavaScript experts talk about the importance of having data on your user base in order to make good choices for your users. They talk about different methods for notifying your users of upcoming changes and how it will affect compatibility, and some of the challenges with communicating with your users. AJ talks about an iteration he thought was a good idea but that a lot of people hated and how he noticed that the new users liked it but the old users did not. They panel agrees that people in general don’t like change. AJ talks about what he learned from this experience. 

Another common issue is integrating with other services. Integrating with cloud services, or at least giving people the option to integrate gives you an opportunity to reach more people and maintain the project long term. AJ gives some final thoughts to close the show, namely that most projects never go anywhere, and that’s ok. If you’ve got something that starts going somewhere, think early on about how you can better serve the community and remember that these people are mostly grateful and semi-willing to support you. He believes that if you are helping people create value, you deserve to see the fruits of your labor. He advises listeners to stay true to your open source ideals, think about your users perspective, and that the earlier you can think about this and make these choices, the better it is for your project


 

Panelists

  • Aimee Knight

  • Steve Edwards

  • AJ O’Neal

  • Charles Max Wood

**To receive your 40% OFF coupon for Manning Publications (good for all our products in all formats) visit us on Facebook - click on "Send A Message"and type "YES"**

Sponsors

  • Sentry | Use the code “devchat” for $100 credit

Links

Picks

Aimee Knight:

Steve Edwards:

AJ O’Neal:

Charles Max Wood:




tera

You are what you eat [electronic resource] : literary probes into the palate / edited by Annette M. Magid




tera

Young adult literature and culture [electronic resource] / edited by Harry Edwin Eiss




tera

Young children's literacy development and the role of televisual texts [electronic resource] / Naima Browne

Browne, Naima




tera

Your average nigga [electronic resource] : performing race, literacy, and masculinity / Vershawn Ashanti Young

Young, Vershawn Ashanti




tera

Zambian crisis behaviour [electronic resource] : confronting Rhodesia's unilateral declaration of independence, 1965-1966 / Douglas G. Anglin

Anglin, Douglas George




tera

Contemporary U.S. Latinx literature in Spanish: straddling identities / Amrita Das, Kathryn Quinn-Sánchez, Michele Shaul, editors

Dewey Library - PQ7070.C65 2018




tera

[ASAP] The First Quantitative Synthesis of a Closed Three-Link Chain (6<sub arrange="stack">1</sub><sup arrange="stack">3</sup>) Using Coordination and Noncovalent Interactions-Driven Self-Assembly

Journal of the American Chemical Society
DOI: 10.1021/jacs.0c01406




tera

[ASAP] Iterative Catalysis in the Biosynthesis of Mitochondrial Complex II Inhibitors Harzianopyridone and Atpenin B

Journal of the American Chemical Society
DOI: 10.1021/jacs.0c03438




tera

Paul's utilization of preformed traditions in 1 Timothy : an evaluation of the apostle's literary, rhetorical, and theological tactics / Mark M. Yarbrough

Yarbrough, Mark M., author




tera

Rereading Romans from the perspective of Paul's gospel : a literary and theological commentary / Yung Suk Kim

Kim, Yung Suk, author




tera

What does the Bible say? : a critical conversation with popular culture in a biblically illiterate world / Mary Ann Beavis and HyeRan Kim-Cragg ; foreword by Catherine Faith MacLean

Beavis, Mary Ann, author




tera

Jesus' literacy : scribal culture and the teacher from Galilee / Chris Keith

Keith, Chris, author




tera

The New Testament in its world : an introduction to the history, literature, and theology of the first Christians / N.T. Wright, Michael F. Bird

Wright, N. T. (Nicholas Thomas), author




tera

Forensic Science and Humanitarian Action: Interacting with the Dead and the Living, 2 Volume Set


 

Widens traditional concepts of forensic science to include humanitarian, social, and cultural aspects

Using the preservation of the dignity of the deceased as its foundation, Forensic Science and Humanitarian Action: Interacting with the Dead and the Living is a unique examination of the applications of humanitarian forensic science. Spanning two comprehensive volumes, the text is sufficiently detailed for forensic practitioners, yet accessible enough



Read More...




tera

Development of novel N-(6-methanesulfonyl-benzothiazol-2-yl)-3-(4-substituted-piperazin-1-yl)-propionamides with cholinesterase inhibition, anti-β-amyloid aggregation, neuroprotection and cognition enhancing properties for the therapy of Alzheimer's d

RSC Adv., 2020, 10,17602-17619
DOI: 10.1039/D0RA00663G, Paper
Open Access
Chandra Bhushan Mishra, Shruti Shalini, Siddharth Gusain, Amresh Prakash, Jyoti Kumari, Shikha Kumari, Anita Kumari Yadav, Andrew M. Lynn, Manisha Tiwari
A novel series of benzothiazole–piperazine hybrids were rationally designed, synthesized, and evaluated as multifunctional ligands against Alzheimer's disease (AD).
The content of this RSS Feed (c) The Royal Society of Chemistry




tera

Tera-Tom on Teradata SQL V12-V13 [electronic resource] / Tom Coffing

Coffing, Tom




tera

V14 certification [electronic resource] : Teradata SQL / authors, Tom Coffing & Leona Coffing

Coffing, Tom, author




tera

Web development with MongoDB and Node JS [electronic resource] : build an interactive and full-featured web application from scratch using Node.js and MongoDB / Mithun Sathessh, Bruno Joseph D'mello, Jason Krol

Satheesh, Mithun, author




tera

Veteran Radio Beijing Hindi announcer dies in China



  • DO NOT USE Indians Abroad
  • World

tera

Interactions in the marine benthos : global patterns and processes / edited by Stephen J. Hawkins, Katrin Bohn, Louise B. Firth, Gray A. Williams




tera

Photophysical, photodynamical, redox properties and BSA-interactions of novel isomeric tetra-cationic peripheral palladium(II)-bipyridyl porphyrins

Dalton Trans., 2020, Accepted Manuscript
DOI: 10.1039/D0DT01063D, Paper
Fabiano S Santos, Carolina H. da Silveira, Fabio Souza Nunes, Daniele Ferreira, Henrique Victória, Klaus Krambrock, Otávio Augusto Chaves, Fabiano Severo Rodembusch, Bernardo Almeida Iglesias
New isomeric tetra-cationic porphyrins containing peripheral [Pd(bpy)Cl]+ units attached at pyridyl substituents were synthetized and fully characterized. The porphyrins present an intense Soret band located in the blue spectral region...
The content of this RSS Feed (c) The Royal Society of Chemistry




tera

Impacts of hydrogen bonding interactions with Np(V/VI)O2Cl4 complexes: vibrational spectroscopy, redox behavior, and computational analysis

Dalton Trans., 2020, Advance Article
DOI: 10.1039/D0DT00848F, Paper
Mikaela M. Pyrch, Jennifer L. Bjorklund, James M. Williams, Daniel L. Parr IV, Sara E. Mason, Johna Leddy, Tori Z. Forbes
Crystallization of neptunyl(V) tetrachlorides over neptunyl(VI) species occurs simultaneously with charge assisted hydrogen bonding in our solid state materials, which we explored by DFT calculations, cyclic voltammograms, and Raman spectroscopy.
To cite this article before page numbers are assigned, use the DOI form of citation above.
The content of this RSS Feed (c) The Royal Society of Chemistry




tera

From bilateral arbitral tribunals and investment courts to a multilateral investment court: options regarding the institutionalization of investor-state dispute settlement / Marc Bungenberg, August Reinisch

Online Resource





tera

The Columbia anthology of Chinese folk and popular literature / edited by Victor H. Mair and Mark Bender




tera

Bilateralism, multilateralism and Asia-Pacific security : contending cooperation / edited by William T. Tow and Brendan Taylor




tera

[ASAP] Assembling Anthracene-Tailored Amphiphiles: Charge-Transfer Interactions Directed Hierarchical Nanofibers with Ameliorative Antibacterial Activity toward Plant Pathogens

Journal of Agricultural and Food Chemistry
DOI: 10.1021/acs.jafc.0c01991




tera

[ASAP] Chemical Modifications of Vicilins Interfere with Chitin-Binding Affinity and Toxicity to <italic toggle="yes">Callosobruchus maculatus</italic> (Coleoptera: Chrysomelidae) Insect: A Combined In Vitro and In Silico Analysis

Journal of Agricultural and Food Chemistry
DOI: 10.1021/acs.jafc.9b08034




tera

Effects of anaerobic digester solids retention time on odor emission and dewaterability of biosolids subjected to various shear intensities, polymer doses, and storage duration times

Environ. Sci.: Water Res. Technol., 2020, Advance Article
DOI: 10.1039/D0EW00028K, Paper
Dian Zhang, Mary Strawn, Tom Broderick, John T. Novak, Zhi-Wu Wang
Shear intensity and polymer dose contributed more than SRT to odor emission from dewatered cake.
To cite this article before page numbers are assigned, use the DOI form of citation above.
The content of this RSS Feed (c) The Royal Society of Chemistry




tera

A mathematical introduction to electronic structure theory: iterative solution of symmetric quasi-definite linear systems / Lin Lin (University of California, Berkeley, California), Jianfeng Lu (Duke University, Durham, North Carolina)

Online Resource