Giter Club home page Giter Club logo

Comments (8)

nelsonni avatar nelsonni commented on June 19, 2024 1

Not all publications are going to be available on https://dl.acm.org, since that repository includes only publications where the publisher was the Association of Computing Machinery (ACM). For software engineering research, there are two primary publishers: ACM and IEEE. So you might have to also look on https://ieeexplore.ieee.org as well. But an easy method would be to use either Google Scholar (which indexes publications from ACM, IEEE, and many additional publishers) or DBLP.

The {{Issue/Edition}} is optional, and should be excluded from any publication that doesn't have it shown in either Google Scholar or DBLP. Same goes for {{Pages}}; only include when available.

The {{Conference Proceeding/Journal}} should be the full listing as indicated on places like Google Scholar. For example, the Chicago Citation Style for one of my publications looks like this:

Chattopadhyay, Souti, Nicholas Nelson, Yenifer Ramirez Gonzalez, Annel Amelia Leon, Rahul Pandita, and Anita Sarma." Latent patterns in activities: a field study of how developers manage context." In 2019 IEEE/ACM 41st International Conference on Software Engineering (ICSE), pp. 373-383. IEEE, 2019.

And the Conference Proceeding would correspond to IEEE/ACM 41st International Conference on Software Engineering (ICSE).

No need to indicate the type (e.g. Technical Track, Short Paper, etc.). Those will be evident from the papers themselves or the conference proceedings.

from epiclab.github.io.

nelsonni avatar nelsonni commented on June 19, 2024 1

I'm assuming you're asking in respect to items 3 and 4 on the list. I'm updating the description to more accurately reflect that the links to the People page should be for current EPICLab members only. Therefore, item 3 applies only to current students and item 4 applies to collaborators and alumni.

from epiclab.github.io.

audreyau avatar audreyau commented on June 19, 2024

If I can't find the publication on dl.acm.org, where can I find the publication's Issue/Edition and Pages? Also, for Conference Proceeding/Journal, should I put the entire conference name, the acronym, or both? Lastly, do you want me to keep what kind of publication it is (Technical Track, Short Paper, etc.) or delete it?

from epiclab.github.io.

audreyau avatar audreyau commented on June 19, 2024

Also, what if a publication doesn't have an edition/issue? Should I leave it blank?

from epiclab.github.io.

audreyau avatar audreyau commented on June 19, 2024

There has been an issue with the website that I've been trying to resolve. If the venue class text is too short, it stays on the same line as author (as shown in the 2nd and 4th citations). I've tried to add an after class css code to author in order to force the line break, but that didn't work either. Do you have any ideas?
Screen Shot 2020-07-31 at 12 33 03 PM

from epiclab.github.io.

nelsonni avatar nelsonni commented on June 19, 2024

Sure. The issue is caused by the use of CSS Flexbox and only setting the flex-wrap attribute (which is currently set to wrap) and not setting the flex-direction attribute (which defaults to row if not set). This can be fixed by setting flex-direction, but an even better trick is to use the flex-flow attribute (and removing the individual flex-wrap attribute) to set both of them in a single CSS attribute on the .attribute class.

Additionally, this will result in all content within that .article class being centered, which isn't what we want, so you also need to update the align-items property. Collectively, this should look like:

.article{
  display: flex;
  flex-flow: column wrap;
  align-items: flex-start;
  ...
}

from epiclab.github.io.

audreyau avatar audreyau commented on June 19, 2024

Worked like a charm! Thank you! 😄

from epiclab.github.io.

audreyau avatar audreyau commented on June 19, 2024

Do Alumni count as EpicLab members for the hyperlinks?

from epiclab.github.io.

Related Issues (12)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.